home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASME's Mechanical Engine…ing Toolkit 1997 December
/
ASME's Mechanical Engineering Toolkit 1997 December.iso
/
win_eng
/
atre27.exe
/
ATREE_27
/
INCLUDE
/
ATREE.RC
< prev
next >
Wrap
Text File
|
1992-08-01
|
4KB
|
70 lines
/*****************************************************************************
**** ****
**** atree.rc ****
**** ****
**** atree release 2.7 ****
**** Copyright (C) A. Dwelly, R. Manderscheid, M. Thomas, W.W. Armstrong ****
**** 1991, 1992 ****
**** ****
**** License: ****
**** A royalty-free license is granted for the use of this software for ****
**** NON_COMMERCIAL PURPOSES ONLY. The software may be copied and/or ****
**** modified provided this notice appears in its entirety and unchanged ****
**** in all derived source programs. Persons modifying the code are ****
**** requested to state the date, the changes made and who made them ****
**** in the modification history. ****
**** ****
**** Patent License: ****
**** The use of a digital circuit which transmits a signal indicating ****
**** heuristic responsibility is protected by U. S. Patent 3,934,231 ****
**** and others assigned to Dendronic Decisions Limited of Edmonton, ****
**** W. W. Armstrong, President. A royalty-free license is granted ****
**** by the company to use this patent for NON_COMMERCIAL PURPOSES ONLY ****
**** to adapt logic trees using this program and its modifications. ****
**** ****
**** Limited Warranty: ****
**** This software is provided "as is" without warranty of any kind, ****
**** either expressed or implied, including, but not limited to, the ****
**** implied warrantees of merchantability and fitness for a particular ****
**** purpose. The entire risk as to the quality and performance of the ****
**** program is with the user. Neither the authors, nor the ****
**** University of Alberta, its officers, agents, servants or employees ****
**** shall be liable or responsible in any way for any damage to ****
**** property or direct personal or consequential injury of any nature ****
**** whatsoever that may be suffered or sustained by any licensee, user ****
**** or any other party as a consequence of the use or disposition of ****
**** this software. ****
**** ****
**** Modification history: ****
**** ****
**** 92.27.02 Release 2.5, Monroe Thomas ****
**** 92.03.07 Release 2.6, Monroe Thomas ****
**** 92.01.08 Release 2.7, Monroe Thomas ****
**** ****
*****************************************************************************/
#ifndef WORKSHOP_INVOKED
#include <windows.h>
#endif
/* the following defines MUST match the defines in atree.h */
#define IDD_ATREE_EPOCH 100
#define IDD_ATREE_CORRECT 101
#define IDD_ATREE_ACTUAL 102
atreeico ICON "atree.ico"
atreeStatus DIALOG 62, 46, 120, 84
CAPTION "atree Status"
STYLE WS_POPUP | WS_CAPTION
BEGIN
CONTROL "Epoch:", 0, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE, 45, 13, 28, 9
CONTROL "Estimated # correct:", 0, "STATIC", WS_CHILD | WS_VISIBLE | 0x2L, 6, 32, 67, 9
CONTROL "", IDD_ATREE_EPOCH, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 13, 31, 9
CONTROL "", IDD_ATREE_CORRECT, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 32, 31, 9
CONTROL "Actual # correct:", -1, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE, 15, 44, 58, 9
CONTROL "", IDD_ATREE_ACTUAL, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 44, 31, 9
ICON "atreeico", -1, 21, 9, 16, 16
DEFPUSHBUTTON "&Cancel", IDCANCEL, 35, 61, 50, 14
END